home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Tool Chest / Development Kits / MPW etc. / Debuggers / SADE / SADE 1.4a3 / SADE Worksheet < prev    next >
Encoding:
Text File  |  1992-07-10  |  1.2 KB  |  29 lines  |  [TEXT/sade]

  1. ###############################################################################
  2. #    Symbolic Application Debugging Environment    1.4
  3. #
  4. #    Copyright Apple Computer, Inc. 1987-1992
  5. #    All rights reserved.
  6. #
  7. ###############################################################################
  8.  
  9. Help        # Get a list of help topics; or use SADE Help menu command in Find menu.
  10.  
  11. # When you compile and link your application, specify the -sym on option to create
  12. # the file containing symbol information (.SYM) that SADE requires for debugging. 
  13.  
  14. #    To specify an application to debug, the simplest method is to double-click on
  15. # it's symbol file from the Finder.  This will launch the application, open the
  16. # source file and break on the first statement of the main program.
  17.  
  18. # You may also use the Target… menu command, or use the following SADE commands to 
  19. #    do it manually:
  20.  
  21. # Identify the directory of the target application and its symbol file:
  22.     Directory 'hd:SADE:SADE Tutorials:CExamples:C Tutorial 1'
  23.  
  24. # The Sourcepath command is not necessary, but may be useful if your source files 
  25. # are in multiple directories. 
  26. #        Sourcepath 'pathname1','pathname2'    
  27.  
  28.     Target 'Sample1'    # assumes symbol file is 'Sample1.SYM'
  29.